home *** CD-ROM | disk | FTP | other *** search
/ Business Assistant / Business Assistant.iso / indus / tim21 / install.bat < prev    next >
DOS Batch File  |  1988-04-06  |  2KB  |  63 lines

  1. echo off
  2. REM * Program..: Install.bat
  3. REM * Author...: Martin Schiff
  4. REM * Date.....: April 6, 1988
  5. REM * Notice...: Copyright CUSTOM DATA SOLUTIONS, 1988, All rights reserved.
  6. REM * 
  7. readme
  8. CLS
  9. echo This program will install the files for Time is Money version 2.1.
  10. echo If you have a previous version of Time is Money, you can update your data
  11. echo files to the new format as well.  If this will be an update to an existing 
  12. echo installation, you should make a complete backup of your Time is Money 
  13. echo subdirectory before proceeding.  
  14. echo .
  15. echo Press Ctrl C to quit or any other key to continue.
  16. pause  
  17. cls
  18. echo This procedure will perform the following actions:
  19. echo .
  20. echo    1. Rename all your existing Time is Money data files with the
  21. echo            extension .OLD (if they exist)
  22. echo    2. Remove the new Time is Money files from their archives
  23. echo .
  24. echo .
  25. echo .
  26. echo If this is an update installation, when this procedure is complete, you
  27. echo should copy the UPDATE disk files into your TIM subdirectory and then
  28. echo type UPDATE at the DOS prompt with your Time is Money directory as
  29. echo the current directory.  This will import all your existing data into 
  30. echo version 2.1 of Time is Money.  
  31. echo .
  32. echo If this is a new installation, your installation is complete.  To start
  33. echo Time is Money, follow the instructions in the enclosed instruction sheet,
  34. echo or read the READ.ME file in your Time is Money subdirectory.
  35. echo .
  36. echo Press Ctrl C to quit or any other key to continue.  
  37. pause  
  38. if not exist tim.exe goto newinst
  39. del tim.exe
  40. del *.bin
  41. del *.mem
  42. del help.dbf
  43. del *.frm
  44. del *.lbl
  45. del *.lib
  46. del *.txt
  47. del vidpop.com
  48. del *.old
  49. del *.olx
  50. rename *.dbf *.old
  51. rename *.ndx *.olx
  52. :newinst
  53. tim21
  54. getdata
  55. echo .
  56. echo Installation complete.
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.